home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / dbman_cgi.nasl < prev    next >
Text File  |  2005-03-31  |  3KB  |  104 lines

  1. #
  2. # This script was written by Noam Rathaus <noamr@securiteam.com>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. # Changes by rd : 
  7. #  - script_id
  8. #  - script_bugtraq_id(1178);
  9. #  - family (in french)
  10. #
  11. #
  12. if(description)
  13. {
  14.  script_id(10403);
  15.  script_bugtraq_id(1178);
  16.  script_version ("$Revision: 1.11 $"); 
  17.  script_cve_id("CVE-2000-0381");
  18.  name["english"] = "DBMan CGI server information leakage";
  19.  script_name(english:name["english"]);
  20.  
  21.  desc["english"] = "It is possible to cause the DBMan 
  22. CGI to reveal sensitive information, by requesting a URL such as:
  23.  
  24. GET /scripts/dbman/db.cgi?db=no-db
  25.  
  26. Risk factor : Medium
  27. Solution : Upgrade to the latest version";
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "Checks if webplus reads local files";
  32.  
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_GATHER_INFO);
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2000 SecuriTeam");
  38.  
  39.  family["english"] = "CGI abuses";
  40.  family["francais"] = "Abus de CGI";
  41.  script_family(english:family["english"], francais:family["francais"]);
  42.  script_dependencie("find_service.nes");
  43.  script_require_ports("Services/www", 80);
  44.  exit(0);
  45. }
  46.  
  47. #
  48. # The script code starts here
  49. #
  50.  
  51. include("http_func.inc");
  52.  
  53. port = get_http_port(default:80);
  54.  
  55.  
  56. if(get_port_state(port))
  57. {
  58.   req = http_get(item:"/scripts/dbman/db.cgi?db=no-db",
  59.           port:port);
  60.   soc = http_open_socket(port);
  61.   if(soc)
  62.   {
  63.    send(socket:soc, data:req);
  64.    result = http_recv(socket:soc);
  65.    http_close_socket(soc);
  66.    backup = result;
  67.    report = string("\nIt is possible to cause the DBMan\n", 
  68. "CGI to reveal sensitive information, by requesting a URL such as:\n\n",
  69. "GET /scripts/dbman/db.cgi?db=no-db\n\n",
  70. "We could obtain the following : \n\n");
  71.    if("CGI ERROR" >< result)
  72.    {
  73.     result = strstr(backup, string("name: no-db at "));
  74.     result = result - strstr(result, string(" line "));
  75.     result = result - "name: no-db at ";
  76.     report = "CGI full path is at: " + result + string("\n");
  77.  
  78.     result = strstr(backup, string("Perl Version        : "));
  79.     result = result - strstr(result, string("\n"));
  80.     result = result - string("Perl Version        : ");
  81.     report = report + "Perl version: " + result + string("\n");
  82.  
  83.     result = strstr(backup, string("PATH                : "));
  84.     result = result - strstr(result, string("\n"));
  85.     result = result - string("PATH                : ");
  86.     report = report + "Server path: " + result + string("\n");
  87.  
  88.     result = strstr(backup, string("SERVER_ADDR         : "));
  89.     result = result - strstr(result, string("\n"));
  90.     result = result - string("SERVER_ADDR         : ");
  91.     report = report + "Server real IP: " + result + string("\n");
  92.  
  93.     result = strstr(backup, string("SERVER_SOFTWARE     : "));
  94.     result = result - strstr(result, string("\n"));
  95.     result = result - string("SERVER_SOFTWARE     : ");
  96.     report = report + "Server software: " + result + string("\n");
  97.     report = report + string("\nRisk factor : Medium\n",
  98.                     "Solution : Upgrade to the latest version\n");
  99.     security_warning(port, data: report);
  100.    } 
  101.   }
  102. }
  103.  
  104.